home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.4)
-
- '''Base class for MIME type messages that are not multipart.'''
- from email import Errors
- from email import MIMEBase
-
- class MIMENonMultipart(MIMEBase.MIMEBase):
- '''Base class for MIME multipart/* type messages.'''
- __pychecker__ = 'unusednames=payload'
-
- def attach(self, payload):
- raise Errors.MultipartConversionError('Cannot attach additional subparts to non-multipart/*')
-
- del __pychecker__
-
-